home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks96 / FlyPaper.sit / Fly Paper / FlyPaper Source / Extension Sources / FlyPaperPatch.h < prev    next >
Text File  |  1996-06-22  |  471b  |  29 lines

  1. #ifndef FLYPAPERPATCH_H
  2. #define FLYPAPERPATCH_H
  3.  
  4. #include <Drag.h>
  5.  
  6. enum {
  7.     kNewDragSelector = 5,
  8.     kSetDragInputProcSelector = 11,
  9.     kTrackDragSelector = 13
  10. };
  11.  
  12. typedef struct {
  13.     DragReference*            theDragRef;
  14. } NewDragParms;
  15.  
  16. typedef struct {
  17.     void*                    refCon;
  18.     DragInputProc            inputProc;
  19.     DragReference            theDragRef;
  20. } SetDragInputProcParms;
  21.  
  22. typedef struct {
  23.     RgnHandle                theRegion;
  24.     const EventRecord*        theEvent;
  25.     DragReference            theDragRef;
  26. } TrackDragParms;
  27.  
  28. #endif
  29.